home *** CD-ROM | disk | FTP | other *** search
- /*
- * CRC generation
- *
- * $Id$
- *
- * :ts=4
- */
-
- #ifndef _CRC_H
- #define _CRC_H
-
- /****************************************************************************/
-
- #ifdef _SSH
- #define crc32 SSH_crc32
- #endif /* _SSH */
-
- /****************************************************************************/
-
- unsigned long crc32(const void *buf, size_t len);
-
- /****************************************************************************/
-
- #endif /* _CRC_H */
-